home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_contains.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  137 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. from test.test_support import TestFailed, have_unicode
  5.  
  6. class base_set:
  7.     
  8.     def __init__(self, el):
  9.         self.el = el
  10.  
  11.  
  12.  
  13. class set(base_set):
  14.     
  15.     def __contains__(self, el):
  16.         return self.el == el
  17.  
  18.  
  19.  
  20. class seq(base_set):
  21.     
  22.     def __getitem__(self, n):
  23.         return [
  24.             self.el][n]
  25.  
  26.  
  27.  
  28. def check(ok, *args):
  29.     if not ok:
  30.         raise TestFailed, ' '.join(map(str, args))
  31.     
  32.  
  33. a = base_set(1)
  34. b = set(1)
  35. c = seq(1)
  36. check(1 in b, '1 not in set(1)')
  37. check(0 not in b, '0 in set(1)')
  38. check(1 in c, '1 not in seq(1)')
  39. check(0 not in c, '0 in seq(1)')
  40.  
  41. try:
  42.     1 in a
  43.     check(0, 'in base_set did not raise error')
  44. except TypeError:
  45.     pass
  46.  
  47.  
  48. try:
  49.     1 not in a
  50.     check(0, 'not in base_set did not raise error')
  51. except TypeError:
  52.     pass
  53.  
  54. check('c' in 'abc', "'c' not in 'abc'")
  55. check('d' not in 'abc', "'d' in 'abc'")
  56. check('' in '', "'' not in ''")
  57. check('' in 'abc', "'' not in 'abc'")
  58.  
  59. try:
  60.     None in 'abc'
  61.     check(0, "None in 'abc' did not raise error")
  62. except TypeError:
  63.     pass
  64.  
  65. if have_unicode:
  66.     check('c' in unicode('abc'), "'c' not in u'abc'")
  67.     check('d' not in unicode('abc'), "'d' in u'abc'")
  68.     check('' in unicode(''), "'' not in u''")
  69.     check(unicode('') in '', "u'' not in ''")
  70.     check(unicode('') in unicode(''), "u'' not in u''")
  71.     check('' in unicode('abc'), "'' not in u'abc'")
  72.     check(unicode('') in 'abc', "u'' not in 'abc'")
  73.     check(unicode('') in unicode('abc'), "u'' not in u'abc'")
  74.     
  75.     try:
  76.         None in unicode('abc')
  77.         check(0, "None in u'abc' did not raise error")
  78.     except TypeError:
  79.         pass
  80.  
  81.     check(unicode('c') in unicode('abc'), "u'c' not in u'abc'")
  82.     check(unicode('d') not in unicode('abc'), "u'd' in u'abc'")
  83.     check(unicode('c') in 'abc', "u'c' not in 'abc'")
  84.     check(unicode('d') not in 'abc', "u'd' in 'abc'")
  85.  
  86. a = range(10)
  87. for i in a:
  88.     check(i in a, '%r not in %r' % (i, a))
  89.  
  90. check(16 not in a, '16 not in %r' % (a,))
  91. check(a not in a, '%s not in %r' % (a, a))
  92. a = tuple(a)
  93. for i in a:
  94.     check(i in a, '%r not in %r' % (i, a))
  95.  
  96. check(16 not in a, '16 not in %r' % (a,))
  97. check(a not in a, '%r not in %r' % (a, a))
  98.  
  99. class Deviant1:
  100.     '''Behaves strangely when compared
  101.  
  102.     This class is designed to make sure that the contains code
  103.     works when the list is modified during the check.
  104.     '''
  105.     aList = range(15)
  106.     
  107.     def __cmp__(self, other):
  108.         if other == 12:
  109.             self.aList.remove(12)
  110.             self.aList.remove(13)
  111.             self.aList.remove(14)
  112.         
  113.         return 1
  114.  
  115.  
  116. check(Deviant1() not in Deviant1.aList, 'Deviant1 failed')
  117.  
  118. class Deviant2:
  119.     '''Behaves strangely when compared
  120.  
  121.     This class raises an exception during comparison.  That in
  122.     turn causes the comparison to fail with a TypeError.
  123.     '''
  124.     
  125.     def __cmp__(self, other):
  126.         if other == 4:
  127.             raise RuntimeError, 'gotcha'
  128.         
  129.  
  130.  
  131.  
  132. try:
  133.     check(Deviant2() not in a, 'oops')
  134. except TypeError:
  135.     pass
  136.  
  137.